home *** CD-ROM | disk | FTP | other *** search
/ The Disc - MacWorld 1995 / PowerComputing (The Disc)(MacWorld 1995).ISO / mac / CDFACTOR / HCfactor / HumanCode / HumanCode.DXR / 00043_playerMouseDownScript.ls < prev    next >
Encoding:
Text File  |  1995-07-14  |  213 b   |  12 lines

  1. global onIBM, gPauseMode, theQTMovie
  2.  
  3. on playerMouseDownScript
  4.   if (clickOn() = 1) and onIBM then
  5.     if gPauseMode then
  6.       QTsetPauseTime(theQTMovie)
  7.     else
  8.       QTPlay(theQTMovie)
  9.     end if
  10.   end if
  11. end
  12.